mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-08 11:03:49 -05:00
* 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
29 lines
469 B
JSON
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"
|
|
]
|
|
}
|
|
}
|