Skip to content

Commit

Permalink
Bugfix: Style lint (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagomapmarques authored Aug 29, 2018
1 parent 614d141 commit fea8223
Show file tree
Hide file tree
Showing 6 changed files with 261 additions and 249 deletions.
8 changes: 4 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated Files
coverage
public
watch
/coverage
/public
/watch
*.log

# Dependencies
Expand All @@ -14,7 +14,7 @@ Thumbs.db
# IDEs and Development
.idea
.editorconfig
docker-compose.yml
/docker-compose.yml

# Git folder
.git
21 changes: 19 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
coverage
# Generated Files
/coverage
/public
/watch
*.log

# Dependencies
node_modules
public

# System Files
.DS_Store
Thumbs.db

# IDEs and Development
.idea
.editorconfig
/docker-compose.yml

# Git folder
.git
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated Files
coverage
public
watch
/coverage
/public
/watch
*.log

# Dependencies
Expand All @@ -14,4 +14,4 @@ Thumbs.db
# IDEs and Development
.idea
.editorconfig
docker-compose.yml
/docker-compose.yml
2 changes: 1 addition & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "stylelint-config-recommended-scss"
"extends": "stylelint-config-standard"
}
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-boilerplate",
"version": "0.11.5",
"version": "0.11.6",
"author": "Tiago Marques",
"description": "Boilerplate for any javascript frontend project",
"keywords": [
Expand Down Expand Up @@ -35,7 +35,7 @@
"clean:reset": "yarn clean && rimraf yarn.lock && yarn clean:packages",
"lint": "yarn lint:code && yarn lint:style && yarn lint:tests",
"lint:code": "eslint --config .eslintrc.json --ignore-pattern *.spec.js src/app/**/*.js",
"lint:style": "stylelint \"**/*.scss\" --config .stylelintrc.json",
"lint:style": "stylelint --config .stylelintrc.json \"src/**/*.scss\"",
"lint:tests": "eslint --config .eslintrc.spec.json src/app/**/*.spec.js src/testing",
"serve": "ws --directory public --spa index.html --log.format dev",
"serve:open": "yarn serve --open",
Expand Down Expand Up @@ -75,20 +75,19 @@
"webpack-cli": "~3.1"
},
"devDependencies": {
"babel-eslint": "~8.2",
"babel-eslint": "~9.0",
"babel-jest": "~23.4",
"eslint": "~5.4",
"eslint-config-airbnb-base": "~13.1",
"eslint-import-resolver-babel-module": "~4.0",
"eslint-plugin-import": "~2.14",
"eslint-plugin-jest": "~21.21",
"eslint-plugin-jest": "~21.22",
"jest": "~23.5",
"jest-css-modules-transform": "~2.0",
"jest-fetch-mock": "~1.6",
"local-web-server": "~2.6",
"stylelint": "~9.5",
"stylelint-config-recommended-scss": "~3.2",
"stylelint-scss": "~3.3",
"stylelint-config-standard": "~18.2",
"webpack-livereload-plugin": "~2.1"
}
}
Loading

0 comments on commit fea8223

Please sign in to comment.