Skip to content

Commit

Permalink
chore: save work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaubrey committed Jul 16, 2023
1 parent a1e4168 commit b5d8d20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions cli/new/_templates/repo/library/.npmignore.ejs.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ to: .npmignore
.vscode/
bundle/
coverage/
dist/
docs/
lib/

# private files
.*
Expand Down
2 changes: 1 addition & 1 deletion cli/new/_templates/repo/library/package.ejs.t
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sh: "<%= packageManager %> install && <%= packageManager %> add -D @repodog/cli
"commit": "commit",
"compile": "pnpm run /^compile:.*/",
"compile:main": "rollup -c ./rollup.config.cjs",
"compile:types": "tsc --project ./tsconfig.json",
"compile:types": "tsc --project ./tsconfig.build.json",
"cut:changelog": "changelog",
"cut:post-version": "pnpm run build",
"lint": "eslint . --ext .ts,.cjs",
Expand Down
4 changes: 2 additions & 2 deletions configs/eslint-config/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ module.exports = {
'import/no-named-as-default': 0,
'import/no-named-as-default-member': 0,
'no-use-before-define': 0,
'typescript-sort-keys/interface': 2,
'typescript-sort-keys/interface': [2, 'asc', { caseSensitive: true, natural: true, requiredFirst: false }],
'typescript-sort-keys/string-enum': 2,
},
settings: {
Expand Down Expand Up @@ -305,7 +305,7 @@ module.exports = {
'unicorn/prevent-abbreviations': [
2,
{
ignore: [/.*dev.*/i, /.*params.*/i, /.*props.*/i],
ignore: [/.*acc.*/i, /.*arg.*/i, /.*args.*/i, /.*dev.*/i, /.*params.*/i, /.*obj.*/i, /.*prop.*/i, /.*props.*/i],
},
],
},
Expand Down

0 comments on commit b5d8d20

Please sign in to comment.