Skip to content

Commit

Permalink
chore: skip lib check and move prettier config
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Mar 20, 2024
1 parent d031881 commit c595035
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
12 changes: 3 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test": "npm run test-only && npm run eslint && npm run prettier && nmr run check-types",
"test-only": "vitest run --coverage",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
Expand All @@ -35,15 +35,9 @@
"url": "https://github.com/cheminfo/ndim-parser/issues"
},
"homepage": "https://github.com/cheminfo/ndim-parser#readme",
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"dependencies": {
"cheminfo-types": "^1.7.3"
"cheminfo-types": "^1.7.3",
"ensure-string": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"esModuleInterop": true,
"moduleResolution": "node",
"inlineSourceMap": true,
"skipLibCheck": true,
"strict": true,
"target": "es2019"
},
Expand Down

0 comments on commit c595035

Please sign in to comment.