mirror of
https://github.com/mmvanheusden/SteamDepotDownloaderGUI.git
synced 2026-02-04 05:31:19 +01:00
18 lines
461 B
JavaScript
18 lines
461 B
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
{
|
|
files: ["src/**"],
|
|
rules: {
|
|
"semi": ["error", "always"], // semicolons
|
|
"indent": ["error", "tab"], // tabs indents
|
|
"linebreak-style": ["error", "unix"],
|
|
"quotes": ["error", "double"]
|
|
}
|
|
},
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.stylistic,
|
|
); |