summaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
blob: 56c7b5d7b9cd814c888259d968ff2094e0be71a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
	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',
	},
}