Skip to content

Commit 54d369f

Browse files
committed
feat: add lint and prettier
1 parent beba26b commit 54d369f

10 files changed

+57
-25
lines changed

.eslintrc

-8
This file was deleted.

.eslintrc.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
extends: [
4+
'plugin:@typescript-eslint/recommended',
5+
'prettier/@typescript-eslint',
6+
'plugin:prettier/recommended',
7+
// "posva"
8+
],
9+
parserOptions: {
10+
ecmaVersion: 2018,
11+
// allows `import`
12+
sourceType: 'module',
13+
},
14+
rules: {
15+
'@typescript-eslint/explicit-function-return-type': 'off',
16+
},
17+
// "env": {
18+
// "jest": true
19+
// }
20+
}

.prettierrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
semi: false,
3+
trailingComma: 'es5',
4+
singleQuote: true,
5+
}

.vscode/settings.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"[javascript]": {
3+
"editor.formatOnSave": false
4+
},
5+
"[typescript]": {
6+
"editor.formatOnSave": false
7+
},
8+
"eslint.autoFixOnSave": true,
9+
"eslint.validate": [
10+
"javascript",
11+
{ "language": "typescript", "autoFix": true }
12+
]
13+
}

__tests__/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
env: {
3+
jest: true,
4+
},
5+
}

babel.config.js

-9
This file was deleted.

circle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212

1313
- restore_cache:
1414
keys:
15-
- dependencies-cache-{{ checksum "yarn.lock" }}
16-
- dependencies-cache-
15+
- dependencies-cache-v1-{{ checksum "yarn.lock" }}
16+
- dependencies-cache-v1-
1717

1818
- run: yarn install
1919

2020
- save_cache:
2121
paths:
2222
- node_modules
23-
key: dependencies-cache-{{ checksum "yarn.lock" }}
23+
key: dependencies-cache-v1-{{ checksum "yarn.lock" }}
2424

2525
- run: yarn run test
2626

jest.config.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module.exports = {
22
collectCoverage: true,
3-
collectCoverageFrom: [
4-
'<rootDir>/src/*.js',
5-
],
3+
collectCoverageFrom: ['<rootDir>/src/*.js'],
64
moduleFileExtensions: ['js', 'jsx', 'json', 'vue'],
75
transform: {
86
'^.+\\.jsx?$': 'babel-jest',

package.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"email": "[email protected]"
1414
},
1515
"scripts": {
16-
"lint": "eslint --fix --color --ext=js,html src tests *.js",
16+
"lint": "eslint --fix --color --ext=js,html,vue,ts src __tests__ *.js",
1717
"lint:fix": "npm run lint -- --fix",
1818
"unit": "jest",
1919
"dev": "npm run unit -- --watchAll",
@@ -31,7 +31,15 @@
3131
"keywords": [],
3232
"license": "MIT",
3333
"devDependencies": {
34+
"@types/jest": "^24.0.18",
35+
"@typescript-eslint/eslint-plugin": "^2.3.1",
36+
"@typescript-eslint/parser": "^2.3.1",
37+
"codecov": "^3.6.1",
38+
"eslint": "^6.4.0",
39+
"eslint-config-prettier": "^6.3.0",
40+
"eslint-plugin-prettier": "^3.1.1",
3441
"pascalcase": "^1.0.0",
42+
"prettier": "^1.18.2",
3543
"rimraf": "^3.0.0",
3644
"rollup": "^1.21.4",
3745
"rollup-plugin-alias": "^2.0.0",

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export function mylib () {
1+
export function mylib() {
22
return true
33
}

0 commit comments

Comments
 (0)