Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# http://editorconfig.org/
root = true

[*.{js,mjs,jsx,ts,tsx}]
[*]
indent_style = space
indent_size = 2
tab_width = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHANGELOG.md
*.d.ts
3 changes: 0 additions & 3 deletions .eslintrc.js

This file was deleted.

74 changes: 67 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,72 @@
node_modules
coverage
build
*.tsbuildinfo
.cache
.*cache
*.cache

# Build environment
dist
pkg

*.log
*~
# Package managers lockfiles
package-lock.json
shrinkwrap.json
pnpm-lock.json

# Logs
logs
*.log
*~

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache
.config-*.js

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next
14 changes: 0 additions & 14 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,15 +1 @@
node_modules
coverage
build
dist

*.log
*.lock
*~
.*
package-lock.json
shrinkwrap.json

LICENSE
CHANGELOG.md
README.md
3 changes: 0 additions & 3 deletions .prettierrc.js

This file was deleted.

38 changes: 0 additions & 38 deletions @tunnckocore/eslint-config/CHANGELOG.md

This file was deleted.

67 changes: 0 additions & 67 deletions @tunnckocore/eslint-config/package.json

This file was deleted.

Loading