1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-31 20:11:59 +02:00
This commit is contained in:
Pomax
2016-01-12 13:39:35 -08:00
parent 98bb8d5a86
commit 8db94a3f50
26 changed files with 129 additions and 93 deletions

31
.eslintrc Normal file
View File

@@ -0,0 +1,31 @@
{
"rules": {
"indent": [2, 2, {
"VariableDeclarator": {
"var": 2,
"let": 2,
"const": 3
}
}],
"no-empty": [2],
"no-console": [0],
"comma-dangle": [2],
"no-unused-vars": [0],
"linebreak-style": [2, "unix"],
"semi": [2, "always"]
},
"env": {
"commonjs": true,
"es6": true,
"browser": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"es6": true,
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
}