Skip to content

Commit c3c6d4f

Browse files
committed
update convCommitConstants.ts
1 parent d65b15b commit c3c6d4f

1 file changed

Lines changed: 13 additions & 8 deletions

File tree

src/generate/convCommitConstants.ts

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export const PACKAGE_NAMES = [
2525
// Make Python package installable and manage external packages.
2626
"pyproject.toml",
2727
"setup.py",
28+
"setup.cfg",
2829

2930
// Ruby
3031
"Gemfile",
@@ -103,14 +104,10 @@ export const CONFIG_EXTENSIONS = [
103104
".toml",
104105
".ini",
105106
".cfg",
106-
".config.js", // e.g. for jest and commitlint
107+
".config.js", // e.g. for rollup, jest and commitlint
107108
];
108109
export const CONFIG_DIRS = [".vscode"];
109110
export const CONFIG_NAMES = [
110-
// Node
111-
".npmignore",
112-
".npmrc",
113-
114111
// Git
115112
".gitignore",
116113

@@ -119,16 +116,22 @@ export const CONFIG_NAMES = [
119116

120117
// Python
121118
".pylintrc",
122-
"setup.cfg",
123119
".isort.cfg",
124120
".flake8",
125121
"pytest.ini",
122+
'.coveragerc',
123+
'.pylintrc',
126124

127125
// Node
126+
".npmignore",
127+
".npmrc",
128+
'.babelrc',
129+
'.eslintrc',
128130
".browserslistrc",
129131
"browserslist",
130-
131-
// TypeScript
132+
"rollup.config.js",
133+
'webpack.config.js',
134+
'npm-shrinkwrap.json',
132135
"tsconfig.json",
133136
"tslint.json",
134137

@@ -156,6 +159,8 @@ export const CI_NAMES = [
156159
".nowignore",
157160
"vercel.json",
158161
".vercelignore",
162+
163+
'Procfile',
159164
];
160165

161166
// This can be useful for multi-file changes e.g. "Create 5 scripts"

0 commit comments

Comments
 (0)