Files
onedark.vim/build/.eslintrc.json
Josh Dick 92fd37ee12 Build system that centralizes color definitions (#81)
* Initial stab at a build system in order to centralize color definitions.

* Flesh out the build system more and add contribution guidelines.

Still missing airline template.

* Templatize airline theme
2017-02-19 13:27:49 -05:00

29 lines
469 B
JSON

{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": [
"off"
],
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
}