Skip to content

Commit

Permalink
feat(cmd:release): added OTP supports
Browse files Browse the repository at this point in the history
  • Loading branch information
fenying committed Oct 27, 2024
1 parent b56251b commit 7547345
Show file tree
Hide file tree
Showing 11 changed files with 1,157 additions and 1,867 deletions.
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

12 changes: 0 additions & 12 deletions .eslintrc

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes Logs

## v0.4.4

- feat(cmd:release): added OTP supports.

## v0.4.3

- build(project): allow `ottoia` running in Windows.
Expand Down
20 changes: 20 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// eslint.config.js
const LitertEslintRules = require('@litert/eslint-plugin-rules');

module.exports = [
...LitertEslintRules.configs.typescript,
{
plugins: {
'@litert/rules': LitertEslintRules,
},
files: [
'src/lib/**/*.ts',
],
languageOptions: {
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
},
}
}
];
Loading

0 comments on commit 7547345

Please sign in to comment.