Skip to content

Commit 3093933

Browse files
committed
Fix JSON indent
1 parent fb38684 commit 3093933

File tree

2 files changed

+45
-45
lines changed

2 files changed

+45
-45
lines changed

.eslintrc

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"rules": {
3-
"no-unused-expressions": [0],
4-
"no-underscore-dangle": [0],
5-
"no-reserved-keys": [2],
6-
"no-multi-spaces": [0],
7-
"no-extra-parens": [2],
8-
"no-unused-vars": [2],
9-
"no-loop-func": [0],
10-
"key-spacing": [0],
11-
"max-len": [2],
12-
"strict": [0],
13-
"indent": [2],
14-
"quotes": [2, "single", "avoid-escape"],
15-
"curly": [0]
16-
},
17-
"env": {
18-
"mocha": true,
19-
"node": true
20-
}
2+
"rules": {
3+
"no-unused-expressions": [0],
4+
"no-underscore-dangle": [0],
5+
"no-reserved-keys": [2],
6+
"no-multi-spaces": [0],
7+
"no-extra-parens": [2],
8+
"no-unused-vars": [2],
9+
"no-loop-func": [0],
10+
"key-spacing": [0],
11+
"max-len": [2],
12+
"strict": [0],
13+
"indent": [2],
14+
"quotes": [2, "single", "avoid-escape"],
15+
"curly": [0]
16+
},
17+
"env": {
18+
"mocha": true,
19+
"node": true
20+
}
2121
}

package.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "postcss-loader",
3-
"version": "0.5.1",
4-
"description": "PostCSS loader for webpack",
5-
"keywords": ["webpack", "loader", "css", "postcss", "postcss-runner"],
6-
"author": "Andrey Sitnik <andrey@sitnik.ru>",
7-
"license": "MIT",
8-
"repository": {
9-
"type": "git",
10-
"url": "https://github.com/postcss/postcss-loader.git"
11-
},
12-
"dependencies": {
13-
"loader-utils": "^0.2.10",
14-
"postcss": "^4.1.13"
15-
},
16-
"devDependencies": {
17-
"gulp-webpack": "1.5.0",
18-
"gulp-eslint": "0.14.0",
19-
"gulp-mocha": "2.1.2",
20-
"raw-loader": "0.5.1",
21-
"fs-extra": "0.20.1",
22-
"chai": "3.0.0",
23-
"gulp": "3.9.0"
24-
},
25-
"scripts": {
26-
"test": "gulp"
27-
}
2+
"name": "postcss-loader",
3+
"version": "0.5.1",
4+
"description": "PostCSS loader for webpack",
5+
"keywords": ["webpack", "loader", "css", "postcss", "postcss-runner"],
6+
"author": "Andrey Sitnik <andrey@sitnik.ru>",
7+
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/postcss/postcss-loader.git"
11+
},
12+
"dependencies": {
13+
"loader-utils": "^0.2.10",
14+
"postcss": "^4.1.13"
15+
},
16+
"devDependencies": {
17+
"gulp-webpack": "1.5.0",
18+
"gulp-eslint": "0.14.0",
19+
"gulp-mocha": "2.1.2",
20+
"raw-loader": "0.5.1",
21+
"fs-extra": "0.20.1",
22+
"chai": "3.0.0",
23+
"gulp": "3.9.0"
24+
},
25+
"scripts": {
26+
"test": "gulp"
27+
}
2828
}

0 commit comments

Comments
 (0)