Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

38 lines
633 B
Plaintext

{
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"jest": true
},
"plugins": [
"import",
"node",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"rules": {
"strict": 0,
"node/no-unpublished-require": 0,
// Import
"import/no-extraneous-dependencies": [
2,
{
"devDependencies": [
"webpack*.js",
"**/*.spec.js",
"**/*.config.js",
"**/testSetup.js"
]
}
]
}
}