eslint: enforce gaps between groups with import/order

This commit is contained in:
Alex Gleason
2022-01-10 16:25:06 -06:00
parent 966ca91e1a
commit 6323c7d70e
515 changed files with 794 additions and 2 deletions

View File

@ -1,4 +1,5 @@
import { fromJS } from 'immutable';
import {
getDomain,
acctFull,

View File

@ -1,5 +1,7 @@
import { fromJS } from 'immutable';
import config_db from 'soapbox/__fixtures__/config_db.json';
import { ConfigDB } from '../config_db';
test('find', () => {

View File

@ -1,4 +1,5 @@
import { fromJS } from 'immutable';
import {
sortEmoji,
mergeEmojiFavourites,

View File

@ -1,4 +1,5 @@
import { Map as ImmutableMap } from 'immutable';
import {
parseVersion,
getFeatures,

View File

@ -1,4 +1,5 @@
import { fromJS } from 'immutable';
import { shouldFilter } from '../timelines';
describe('shouldFilter', () => {

View File

@ -1,5 +1,6 @@
// @preval
const { execSync } = require('child_process');
const pkg = require('../../../package.json');
const shortRepoName = url => new URL(url).pathname.substring(1);

View File

@ -4,6 +4,7 @@
*/
import { join } from 'path';
import { FE_SUBDIRECTORY } from 'soapbox/build_config';
export const joinPublicPath = (...paths) => {