![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@3yourmind/eslint-config
Advanced tools
import tseslint from 'typescript-eslint'
import eslintConfig3YD from '@3yourmind/eslint-config'
const config = tseslint.config(
/**
* DO NOT ADD ANY OTHER KEYS TO THIS FIRST OBJECT
*
* @see {@link https://eslint.org/docs/latest/use/configure/ignore#ignoring-files}
*/
{
ignores: ['**/dist/**', '**/.nuxt/**', '**/.turbo/**'], // global ignores
},
...eslintConfig3YD.configs.global, // enables recommended eslint settings globally
{
languageOptions: {
ecmaVersion: 2022,
parserOptions: {
project: [
'./tsconfig.json',
// FIXME: Change these to your `tsconfig.json`s
// './packages/*/tsconfig.json',
],
tsconfigRootDir: 'FIXME: You may want to specify this directory',
},
sourceType: 'module',
},
},
...eslintConfig3YD.configs.default.map((config) => ({
...config,
// Example: apply config to only these files
files: ['packages/**/*.ts', 'packages/**/*.tsx'],
})),
// Example: apply config to all default files
...eslintConfig3YD.configs.untyped,
...eslintConfig3YD.configs.json,
...eslintConfig3YD.configs.tests.map((config) => ({
...config,
// FIXME: Add your custom test files here
files: [
...config.files,
// 'packages/*/source/test-utils/**/*.ts'
],
})),
...eslintConfig3YD.configs.vue,
{
rules: {
// add your overrides here
// '@typescript-eslint/no-restricted-imports': 'off',
},
},
)
export default config
@3yourmind/eslint-config
requires eslint>=9
and its new FlatConfig format
npm install --save-dev @3yourmind/eslint-config
# or
yarn add --dev @3yourmind/eslint-config
eslintConfig3YD.configs.default
eslintConfig3YD.configs.global
eslintConfig3YD.configs.json
eslintConfig3YD.configs.tests
eslintConfig3YD.configs.untyped
vue-consistent-ref-names
: https://github.com/3YOURMIND/kotti/blob/master/packages/eslint-config/source/rules/vue-consistent-ref-names.tsvue-no-v-model-deep
: https://github.com/3YOURMIND/kotti/blob/master/packages/eslint-config/source/rules/vue-no-v-model-deep.tsvue-no-v-t-on-components
: https://github.com/3YOURMIND/kotti/blob/master/packages/eslint-config/source/rules/vue-no-v-t-on-components.tsvue-no-v-t-without-translation
: https://github.com/3YOURMIND/kotti/blob/master/packages/eslint-config/source/rules/vue-no-v-t-without-translation.tsFAQs
ESLint config for 3YOURMIND
The npm package @3yourmind/eslint-config receives a total of 0 weekly downloads. As such, @3yourmind/eslint-config popularity was classified as not popular.
We found that @3yourmind/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.