@@ -, +, @@ --- .eslintrc.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .eslintrc.json --- a/.eslintrc.json +++ a/.eslintrc.json @@ -0,0 +1,21 @@ +{ + "env": { + "browser": true, + "jquery": true + }, + "extends": "eslint:recommended", + "rules": { + "indent": [ + "error", + 4 + ], + "linebreak-style": [ + "error", + "unix" + ], + "semi": [ + "error", + "always" + ] + } +} --