summaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
blob: ef9b568e1ab6c90d73380fb20293063cc3a2f391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
	ignorePatterns: ['src/**/*.d.ts'],
	globals: {
		appName: true,
		appVersion: true,
	},
	extends: [
		'@nextcloud/eslint-config/typescript',
	],
	rules: {
		// @nextcloud/vue has Button, Content components restricted by rule
		'vue/no-reserved-component-names': 'off',
	},
}