Releases: valantic/eslint-config-valantic
Releases · valantic/eslint-config-valantic
16.0.1
16.0.0
- (Breaking) Adds
@typescript-eslint/naming-convention
rule to prevent type prefixing. - (Breaking) NPM updates
- .eslintignore files are no longer supported. Use
ignores
in the .eslintrc.js. @see https://eslint.org/docs/latest/use/configure/configuration-files-new#globally-ignoring-files-with-ignores
- .eslintignore files are no longer supported. Use
- (Breaking)
vue/require-prop-comment
now enforces prop comments. - (Breaking)
vue/multiline-ternary
disallows the use of line breaks in template ternaries.
15.2.0
- (Change) Overwrites
no-plusplus
rule to allow++
statements infor
-loops
15.1.0
- (Change) Defines 'vue/object-curly-spacing' as a --fix rule.
15.0.0
- (Breaking) Adds 'vue/object-curly-spacing' rule to force object spacing in vue templates.
14.3.1
- (Change) Fixes Vue 3 configuration to get rid of TS parsing error.
14.3.0
- (Change) Adds '@typescript-eslint/ban-ts-comment' to make sure
@ts-ignore
always have a reason comment.
14.2.1
- (Bugfix) Changes order of rule imports in vue(3).js to fix an issue, where 'indent' was enabled again by the vue-recommendations.
14.2.0
- (Change) Improves Vue 3 configuration by loosening some rules and removing '@vue/typescript'.
14.1.2
- (Change) Increases 'minItems' on array-element-newline.ArrayPattern to allow
[key, value]
combinations on same line.