Skip to content

Commit eee1e08

Browse files
authored
Merge pull request #155 from solid/prettier
Implementing use of Prettier + Standard
2 parents 97d0185 + 236a3ca commit eee1e08

39 files changed

+7838
-2989
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lib

.eslintrc

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": "standard",
8+
"globals": {
9+
"Atomics": "readonly",
10+
"SharedArrayBuffer": "readonly"
11+
},
12+
"parser": "@typescript-eslint/parser",
13+
"parserOptions": {
14+
"project": "./tsconfig.json"
15+
},
16+
"plugins": [
17+
"@typescript-eslint"
18+
],
19+
"rules": {
20+
"no-unused-vars": ["warn", {
21+
"argsIgnorePattern": "^_",
22+
"varsIgnorePattern": "^_"
23+
}],
24+
"@typescript-eslint/no-unused-vars": ["warn", {
25+
"argsIgnorePattern": "^_",
26+
"varsIgnorePattern": "^_"
27+
}]
28+
}
29+
}

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ deploy:
1111
provider: npm
1212
# Do not throw away the updated package.json we generated in `before_deploy`:
1313
skip_cleanup: true
14-
email: "$NPM_EMAIL"
15-
api_key: "$NPM_TOKEN"
14+
email: '$NPM_EMAIL'
15+
api_key: '$NPM_TOKEN'
1616
# Note: do not deploy on pull request, because $TRAVIS_BRANCH will be the target branch.
17-
tag: "$TRAVIS_BRANCH"
17+
tag: '$TRAVIS_BRANCH'
1818
on:
1919
all_branches: true

0 commit comments

Comments
 (0)