Skip to content

Commit

Permalink
Preparing for ESLint fix run
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaid committed Apr 4, 2024
1 parent 3507f68 commit dd2bc47
Show file tree
Hide file tree
Showing 8 changed files with 11,163 additions and 46,577 deletions.
13 changes: 2 additions & 11 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,8 @@ charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = false
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

[/package.json]
insert_final_newline = true # npm install rewrites the JSON file with a final newline, so we manually keep them to prevent unneeded stashes
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
extends: jaid
81 changes: 57 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,65 @@
# 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/
/cache/

# 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
# ESLint
.eslintcache

# IDEs
/debug.log
/.vscode/
/.idea/
# Wireit
/.wireit/
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 © 2021, Jaid <jaid.jsx@gmail.com> (https://github.com/jaid)
Copyright © 2024, Jaid <jaid.jsx@gmail.com> (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.

0 comments on commit dd2bc47

Please sign in to comment.