feat: add prettier to format
This commit is contained in:
parent
a7266b7817
commit
efd3d74196
|
@ -7,8 +7,10 @@
|
|||
"jsx": true
|
||||
}
|
||||
},
|
||||
"plugins": ["prettier"],
|
||||
"rules": {
|
||||
"semi": [1, "never"],
|
||||
"indent": ["error", 2]
|
||||
"indent": ["error", 2],
|
||||
"prettier/prettier": "error"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@ node_modules
|
|||
/coverage
|
||||
package-lock.json
|
||||
/test/ts/**/*.js
|
||||
yarn.lock
|
||||
|
||||
# Editor and IDE configuration
|
||||
.vscode/
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
dist
|
||||
node_modules
|
|
@ -0,0 +1,9 @@
|
|||
module.exports = {
|
||||
printWidth: 80,
|
||||
tabWidth: 2,
|
||||
useTabs: false,
|
||||
singleQuote: false,
|
||||
semi: true,
|
||||
trailingComma: "none",
|
||||
bracketSpacing: true
|
||||
};
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"devDependencies": {
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"prettier": "2.3.1"
|
||||
},
|
||||
"scripts": {
|
||||
"prettier:check": "prettier --check **/*.{js,jsx,ts,tsx} ",
|
||||
"prettier:write": "prettier --write **/*.{js,jsx,ts,tsx}"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue