This Gist has now been converted into a package and migrated to https://github.com/marcnewton/laravel-alsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Author: Marc Newton <[email protected]> | |
* Link: https://gist.github.com/marcnewton/37e7d07a962bf7eb8f2eef38626e6812 | |
* | |
* Laravel custom validation rule. | |
* Pattern match for checking strings only contain alphabetical characters from various launguage writing systems. | |
* | |
* Accepts additional custom appended regex syntax. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
extends: [ | |
'plugin:vue/essential', | |
'@vue/standard', | |
'vuetify', | |
], |