Skip to content

Commit

Permalink
Add eslint and lint-staged
Browse files Browse the repository at this point in the history
  • Loading branch information
mmgoodnow committed Oct 11, 2020
1 parent e186735 commit e5ca1e0
Show file tree
Hide file tree
Showing 6 changed files with 1,584 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,17 @@
{
"env": {
"node": true,
"commonjs": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"no-unused-vars": [
"error",
{ "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }
]
}
}
6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e5ca1e0

Please sign in to comment.