Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/lib
/lib
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {

Check warning on line 1 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 22.x)

Do not use "module"

Check warning on line 1 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 20.x)

Do not use "module"

Check warning on line 1 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / test (macos-latest, 20.x)

Do not use "module"

Check warning on line 1 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / test (macos-latest, 22.x)

Do not use "module"
env: {
mocha: true,
},
extends: [
'oclif',
'oclif-typescript',
Expand Down
12 changes: 12 additions & 0 deletions .prettier.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const config = {
endOfLine: 'auto',
"singleQuote": true,
"printWidth": 120,
"proseWrap": "always",
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"bracketSpacing": true,
"semi": true
};
export default config;
4 changes: 0 additions & 4 deletions .prettierrc

This file was deleted.

11 changes: 11 additions & 0 deletions mocharc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {

Check warning on line 1 in mocharc.js

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 22.x)

Do not use "module"

Check warning on line 1 in mocharc.js

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 20.x)

Do not use "module"

Check warning on line 1 in mocharc.js

View workflow job for this annotation

GitHub Actions / test (macos-latest, 20.x)

Do not use "module"

Check warning on line 1 in mocharc.js

View workflow job for this annotation

GitHub Actions / test (macos-latest, 22.x)

Do not use "module"
recursive: true,
reporter: 'spec',
require: [
'test/helpers/init.js',
'ts-node/esm',
'source-map-support/register',
],
timeout: 360000,
'watch-extensions': 'ts',
}
Loading
Loading