Skip to content

Commit

Permalink
.eslint.rc
Browse files Browse the repository at this point in the history
  • Loading branch information
sschoeling committed Jun 25, 2021
1 parent 8f426df commit 0bf838b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
module.exports = {
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2015
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"no-console": [
"error",
{
"allow": [
"warn",
"error"
],
}
]
},
"globals": {
"namespace": true,
"kivi": true
},
};

0 comments on commit 0bf838b

Please sign in to comment.