Set indent to 'warn' so that it doens't error on lint fixes for eslint 4.0

This commit is contained in:
Rachel Fenichel
2018-01-24 10:41:12 -08:00
parent 799148da7e
commit b9b1105448

View File

@@ -2,7 +2,7 @@
"rules": {
"curly": ["error", "multi-line"],
"eol-last": ["error"],
"indent": ["error", 2, {"SwitchCase": 1}], # Blockly/Google use 2-space indents
"indent": ["warn", 2, {"SwitchCase": 1}], # Blockly/Google use 2-space indents
"linebreak-style": ["error", "unix"],
"max-len": ["error", 120, 4],
"no-trailing-spaces": ["error", { "skipBlankLines": true }],