mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-22 07:59:32 +01:00
9 lines
250 B
JavaScript
9 lines
250 B
JavaScript
module.exports = {
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
root: true,
|
|
rules: {
|
|
'curly': 'error'
|
|
}
|
|
};
|