reverts back to 2 spaces instead of 4

This commit is contained in:
James
2018-07-18 12:52:51 -04:00
parent 3857ed4b63
commit 83f135ef22
5 changed files with 47 additions and 47 deletions

View File

@@ -6,7 +6,7 @@ insert_final_newline = true
[*.js]
indent_style = space
indent_size = 4
indent_size = 2
[*.html]
indent_style = space

View File

@@ -150,7 +150,7 @@ module.exports = exports = {
"func-names": WARN,
"func-style": [ WARN, "declaration" ],
"id-length": [ WARN, { "min": 2, "max": 32 } ],
"indent": [ WARN, 4 ],
"indent": [ WARN, 2 ],
"jsx-quotes": [ WARN, "prefer-double" ],
"keyword-spacing": [ WARN, { "before": true, "after": true} ],
// "linebreak-style": [ WARN, "unix" ],

View File

@@ -1,4 +1,4 @@
let OptiizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
let OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
let UglifyJSPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
@@ -16,4 +16,4 @@ module.exports = {
plugins: [
new OptimizeCssAssetsPlugin()
]
}
};