mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-05 13:52:25 +02:00
17 lines
425 B
JavaScript
17 lines
425 B
JavaScript
/**
|
|
* @fileoverview Eslint rules for AdonisJs applications and addons
|
|
* @author virk
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Plugin Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
configs: {
|
|
typescriptPackage: require('./ts-package.json'),
|
|
typescriptApp: require('./ts-app.json')
|
|
}
|
|
}
|