forked from mirror/Mainroad
Improve dev workflow: Travis CI, ESLint, PostCSS… (#98)
* Add Autoprefixer * Add .browserslistrc * Add ESLint * Add Travis CI * Update packages * Update .stylelintrc Fix #97
This commit is contained in:
parent
e9549a3d1a
commit
6f6d38e061
7 changed files with 4108 additions and 623 deletions
4
.browserslistrc
Normal file
4
.browserslistrc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
> 0.25%
|
||||||
|
not dead
|
||||||
|
IE >= 10
|
||||||
|
iOS >= 7
|
7
.eslintrc
Normal file
7
.eslintrc
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"extends": "airbnb-base/legacy",
|
||||||
|
"rules": {
|
||||||
|
"indent": [2, "tab"],
|
||||||
|
"no-tabs": 0
|
||||||
|
}
|
||||||
|
}
|
7
.postcssrc
Normal file
7
.postcssrc
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"plugins": {
|
||||||
|
"autoprefixer": {
|
||||||
|
cascade: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -119,8 +119,7 @@
|
||||||
"flex-flow",
|
"flex-flow",
|
||||||
"flex-shrink",
|
"flex-shrink",
|
||||||
"flex-grow",
|
"flex-grow",
|
||||||
"flex-order",
|
"flex-wrap",
|
||||||
"flex-pack",
|
|
||||||
"align-content",
|
"align-content",
|
||||||
"align-items",
|
"align-items",
|
||||||
"align-self",
|
"align-self",
|
||||||
|
@ -310,7 +309,10 @@
|
||||||
"animation-iteration-count",
|
"animation-iteration-count",
|
||||||
"animation-direction",
|
"animation-direction",
|
||||||
"animation-fill-mode",
|
"animation-fill-mode",
|
||||||
|
"quotes",
|
||||||
|
"will-change",
|
||||||
"fill",
|
"fill",
|
||||||
|
"fill-rule",
|
||||||
"stroke"
|
"stroke"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
8
.travis.yml
Normal file
8
.travis.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- "8"
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
|
||||||
|
script:
|
||||||
|
- npm run lint
|
4677
package-lock.json
generated
4677
package-lock.json
generated
File diff suppressed because it is too large
Load diff
22
package.json
22
package.json
|
@ -5,13 +5,27 @@
|
||||||
"license": "GPL-2.0",
|
"license": "GPL-2.0",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"stylelint": "^9.2.0",
|
"autoprefixer": "^9.2.1",
|
||||||
"stylelint-order": "^0.8.1"
|
"eclint": "^2.8.0",
|
||||||
|
"eslint": "^5.7.0",
|
||||||
|
"eslint-config-airbnb-base": "^13.1.0",
|
||||||
|
"eslint-plugin-import": "^2.14.0",
|
||||||
|
"eslint-plugin-node": "^7.0.1",
|
||||||
|
"postcss-cli": "^6.0.1",
|
||||||
|
"stylelint": "^9.6.0",
|
||||||
|
"stylelint-order": "^1.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint:css": "stylelint static/css/*.css",
|
"lint:css": "stylelint static/css/*.css",
|
||||||
"lint": "npm run lint:css",
|
"lint:js": "eslint static/js/*.js",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"lint:editorconfig": "eclint check '**/*.{html,css,js,json,md,toml,yaml,yml}'",
|
||||||
|
"lint": "npm run lint:css && npm run lint:js && npm run lint:editorconfig",
|
||||||
|
"fix:prefixes": "postcss -r static/css/*.css",
|
||||||
|
"fix:css": "stylelint static/css/*.css --fix",
|
||||||
|
"fix:js": "eslint static/js/*.js --fix",
|
||||||
|
"fix:editorconfig": "eclint fix '**/*.{html,css,js,json,md,toml,yaml,yml}'",
|
||||||
|
"fix": "npm run fix:prefixes && npm run fix:css && npm run fix:js && npm run fix:editorconfig",
|
||||||
|
"test": "npm run lint"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Add table
Reference in a new issue