Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-10-09 11:40:58 +0300
committerGitHub <noreply@github.com>2019-10-09 11:40:58 +0300
commit81e90bb6f5194a761d688fe7fd32c9507f11e88a (patch)
treef6ed220032a21dcc7410ca338c7b4980150a1155 /.eslintrc.json
parent9b70336bdc7326e1550b00241d18fea1d94f55b5 (diff)
Add basic ESLint support. (#37)
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 000000000..1044da985
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,21 @@
+{
+ "root": true,
+ "env": {
+ "es6": true,
+ "node": true
+ },
+ "parserOptions": {
+ "ecmaVersion": 2017
+ },
+ "extends": "eslint:recommended",
+ "rules": {
+ "object-curly-spacing": [
+ "error",
+ "always"
+ ],
+ "semi": [
+ "error",
+ "never"
+ ]
+ }
+}