We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6241d5 commit 1b92673Copy full SHA for 1b92673
.eslintrc
@@ -1,5 +1,8 @@
1
{
2
"extends": "airbnb/legacy",
3
+ "env": {
4
+ "es6": true
5
+ },
6
"globals": {
7
"Promise": true
8
},
package.json
@@ -47,7 +47,7 @@
47
"scripts": {
48
"test": "npm run mocha && npm run lint",
49
"mocha": "mocha test/index.js --reporter spec --slow 400 --timeout 8000",
50
- "lint": "eslint lib/index.js test/test.js bin/suitcss",
+ "lint": "eslint lib/*.js test/**/*.js bin/suitcss",
51
"watch": "npm run mocha -- --watch"
52
53
"keywords": [
test/config/test.js
@@ -1,7 +1,7 @@
module.exports = {
lint: true,
use: [
- "postcss-property-lookup"
+ 'postcss-property-lookup'
],
autoprefixer: {
add: false,
0 commit comments