This adds Gaufre v2 with source, documentation, examples and built artefacts. Also includes the feedback widget from Messages.
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import { defineConfig } from 'eslint/config';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default defineConfig(
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
); |