Skip to content

Commit

Permalink
chore: Switch from JSCS to ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
Antrikshy authored and remy committed Oct 19, 2020
1 parent 03c4ed3 commit 66ec7cd
Show file tree
Hide file tree
Showing 5 changed files with 673 additions and 1,002 deletions.
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"space-before-function-paren": [
2,
{
"anonymous": "ignore",
"named": "never"
}
]
}
}
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This will allow for the automatic changelog to generate correctly.

## Code standards

Ensure that your code adheres to the included `.jshintrc` and `.jscsrc` configs.
Ensure that your code adheres to the included `.jshintrc` and `.eslintrc.json` configs.

## Sending pull requests

Expand Down
13 changes: 0 additions & 13 deletions .jscsrc

This file was deleted.

Loading

0 comments on commit 66ec7cd

Please sign in to comment.