aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000..90221fb
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,16 @@
1{
2 "env": {
3 "browser": true,
4 "es6": true
5 },
6 "extends": "eslint:recommended",
7 "parserOptions": {
8 "ecmaVersion": 2016
9 },
10 "rules": {
11 "indent": ["error", 4],
12 "linebreak-style": ["error", "unix"],
13 "quotes": ["error", "single"],
14 "semi": ["error", "always"]
15 }
16}