aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2018-11-19 06:55:41 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2018-11-19 06:55:41 +0100
commitc2b52c035b4ed907ba1a704286aceb778421cc70 (patch)
tree59e1bfc66d8c19e0f8c26ed6e6cc248b3ce799f9 /.eslintrc.json
parent122af6684de0bc83a530b5bf5760e8112f8708f1 (diff)
downloadmitjafelicijan.com-c2b52c035b4ed907ba1a704286aceb778421cc70.tar.gz
content update
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}