Skip to content

Commit 9b7af24

Browse files
committed
allmost done next promo
1 parent 49b0c0e commit 9b7af24

38 files changed

+841
-21953
lines changed

.eslintignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
core/**/*
2+
vendor/**/*
3+
web/sites/**/files/**/*
4+
libraries/**/*
5+
web/sites/**/libraries/**/*
6+
web/profiles/**/libraries/**/*
7+
**/js_test_files/**/*
8+
**/node_modules/**/*

.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ module.exports = {
88
parser: 'babel-eslint'
99
},
1010
extends: [
11+
// "standard",
1112
"eslint:recommended",
12-
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
13-
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
1413
"plugin:vue/recommended",
1514
"plugin:prettier/recommended"
1615
],
@@ -20,6 +19,7 @@ module.exports = {
2019
],
2120
// add your custom rules here
2221
rules: {
22+
'generator-star-spacing': 'off',
2323
"semi": [2, "never"],
2424
"no-console": "off",
2525
"vue/max-attributes-per-line": "off",

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gulp.task(
2222
"perl -pi -w -e 's/to\\:\\\"\\//to\\:\\\"\\/vue\\-stylekit\\/docs\\//g' ./docs/main.js\n",
2323
"perl -pi -w -e 's/src=/src=\\/vue\\-stylekit\\/docs\\//g' ./docs/index.html",
2424
// "perl -pi -w -e 's/BasisGrotesqu/docs\\/BasisGrotesqu/g' ./docs/main.js",
25-
"perl -pi -w -e 's/\\<\\/script\\>\\<\\/head\\>/\\<\\/script\\>\\<link rel\\=\\\"stylesheet\\\" href\\=\\\"\\/vue\\-stylekit\\/docs\\/fonts.css\\\"\\/\\>\\<\\/head\\>/g' ./docs/index.html\n",
25+
'perl -pi -w -e \'s/\\<\\/script\\>\\<\\/head\\>/\\<\\/script\\>\\<link rel\\=\\"stylesheet\\" href\\=\\"\\/vue\\-stylekit\\/docs\\/fonts.css\\"\\/\\>\\<\\/head\\>/g\' ./docs/index.html\n',
2626
"rm -rf ./dist",
2727
"git commit -a -m'deploy'\n",
2828
"git push",

images/smartHouse/smart-house.png

221 KB
Loading

package-lock.json

+76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,14 @@
5656
"eslint": "^5.5.0",
5757
"eslint-config-airbnb-base": "^13.1.0",
5858
"eslint-config-prettier": "^3.0.1",
59+
"eslint-config-standard": "^12.0.0",
5960
"eslint-loader": "^2.1.0",
61+
"eslint-plugin-html": "^4.0.5",
6062
"eslint-plugin-import": "^2.14.0",
63+
"eslint-plugin-node": "^7.0.1",
6164
"eslint-plugin-prettier": "^2.6.2",
65+
"eslint-plugin-promise": "^4.0.1",
66+
"eslint-plugin-standard": "^4.0.0",
6267
"eslint-plugin-vue": "^5.0.0-beta.3",
6368
"esm": "^3.0.82",
6469
"express": "^4.16.3",

0 commit comments

Comments
 (0)