Skip to content

Commit

Permalink
Lint with eslint and standard
Browse files Browse the repository at this point in the history
Add eslint lint with a standard base

extended to teams alphabetical order
  • Loading branch information
jonathangoulding committed Apr 26, 2024
1 parent 9c0cc37 commit 711d2da
Show file tree
Hide file tree
Showing 3 changed files with 1,848 additions and 751 deletions.
11 changes: 11 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
extends: 'standard', // Maintain Standard.js rules
// ignorePatterns: ['test/*'],
plugins: ['sort-keys', 'require-sort'],
rules: {
'require-sort/require-sort': 'error',
'sort-keys': [
'error', 'asc', { caseSensitive: false }
]
}
}
Loading

0 comments on commit 711d2da

Please sign in to comment.