]> git.proxmox.com Git - pve-eslint.git/blob - eslint/tests/fixtures/autofix/return-conflicting-fixes.js
first commit
[pve-eslint.git] / eslint / tests / fixtures / autofix / return-conflicting-fixes.js
1 /* eslint no-else-return: "error" */
2 /* eslint no-useless-return: "error" */
3 /* eslint no-trailing-spaces: "error" */
4 function f() {
5 if (true) {
6 return;
7 } else {
8 return 1;
9 }
10 }