Skip to content

Commit

Permalink
Applied templates generic/node/nodeLib
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaid committed Jul 19, 2024
1 parent 21a8ff1 commit c5a8f51
Show file tree
Hide file tree
Showing 8 changed files with 798 additions and 39 deletions.
8 changes: 1 addition & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,5 @@ indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
[*.{md,hbs,txt}]
trim_trailing_whitespace = false

[*.txt]
trim_trailing_whitespace = false

[*.hbs]
trim_trailing_whitespace = false
84 changes: 58 additions & 26 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,39 +1,71 @@
# Windows, based on https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump

# Mac, based on https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# VS Code, based on https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# dotenv
.env

# Node packages
node_modules
# Generated or temporary content
/out/
/dist/
/temp/
/private/
/srcCompiled/
/srcCompiled-*/

# npm
# NodeJS, based on https://github.com/github/gitignore/blob/main/Node.gitignore
*.log
npm-debug.log*
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
pids
*.pid
*.seed
*.pid.lock
node_modules/
*.tsbuildinfo
.npm
.npmrc
.node_repl_history
package-lock.json
!/package-lock.json
npm-debug.log
npm-debug.log.*
.npmrc
/report.*.json

# pnpm
shrinkwrap.yaml
!/shrinkwrap.yaml
pnpm-debug.log

# Yarn
yarn.lock
!/yarn.lock
yarn-error.log

# Generated or temporary content
dist
temp
out

# IDEs
/debug.log
/.vscode/
/.idea/
# ESLint
.eslintcache

# Wireit
/.wireit/

# Yarn
.pnp.*
.yarn/*
!.yarn/patches
Expand Down
14 changes: 14 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"json.schemas": [
{
"fileMatch": [
"/dist/build/*/index.json"
],
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/eslintrc.json"
}
],
"yaml.schemas": {
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/eslintrc.json": "/src/presets/*/config.yml",
"etc/jsonSchema/rule.schema.json": "/src/rules/*.yml"
}
}
6 changes: 2 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import config from "./dist/package/eslint-config-jaid/development/lib.js"
import {makeEslintConfig} from 'eslint-config-jaid'

export default [
...config
]
export default makeEslintConfig()
4 changes: 2 additions & 2 deletions license.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright © 2022, Jaid <[email protected]> (https://github.com/jaid)
Copyright © 2024, Jaid <[email protected]> (https://github.com/jaid)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
Loading

0 comments on commit c5a8f51

Please sign in to comment.